home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / rbcomm33.arc / OPUS.MAC < prev    next >
Text File  |  1991-02-02  |  2KB  |  70 lines

  1. ; RBcomm macro file for Opus systems with OpXpress
  2. ;
  3. F2      MULTI                    ; from main bulletins screen
  4.     TEXT    "x\r"
  5.     WAITFOR 20 "ress"
  6.     TEXT    "  "
  7.     WAITFOR 15 "C, D"
  8.     PAUSE    4
  9.     PUSHKEY F3         ; now that we're at the OpX prompt, run rest
  10.     END
  11. F3    MULTI             ; from OpX prompt
  12.         CHDIR   "d:/opx"         ; make sure we're in the right directory
  13.     TEXT    "d\r"            ; tell OpX we want to download
  14.     WAITFOR 40 ">"           ; wait for action prompt
  15.     WAITFOR 3  ":"
  16.     PAUSE    4
  17.         TEXT    "a\r"            ; we want to download all messages
  18.     WAITFOR 30 "ountdown"    ; wait for transfer start prompt
  19.     PAUSE    3
  20.         TEXT    "\r"             ; yes, we want to start downloading
  21.     END
  22. Home    TEXT     "^Q^S"
  23. End    TEXT     "^Q^D"
  24. Left    TEXT     "^S"
  25. Right    TEXT     "^D"
  26. Up    TEXT     "^E"
  27. Down    TEXT     "^X"
  28. PgUp    TEXT     "^R"
  29. PgDn    TEXT     "^C"
  30. ^PgUp    TEXT     "^Q^R"
  31. ^PgDn    TEXT     "^Q^C"
  32. Ins    TEXT     "^V"
  33. Del    TEXT     "\a"
  34. ^Left    TEXT     "^A"
  35. ^Right    TEXT     "^F"
  36.  
  37. ; and now, our automatic logon routine
  38. AUTO    MULTI
  39.     BEEP              ; get user's attention that we've finally
  40.     PAUSE    6          ; made it onto the system
  41.     BEEP
  42.     TEXT    "\r"              ; get the BBS's attention
  43.     PAUSE    9
  44.     TEXT    "\r"
  45.     PAUSE    9
  46.     UNTIL    SUCCESS
  47.        {
  48.        TEXT    "\r"
  49.        WAITFOR 1 " "
  50.        }
  51.     WAITFOR 5 "ress"          ; when mailer asks to press Escape, do so
  52.     TEXT    "\e"
  53.     WAITFOR 20 "ame:"         ; wait for login prompt
  54.     TEXT    "your name;y\r"   ; and send name
  55.     WAITFOR 10 "ord:"         ; wait for password prompt
  56.     PASSWORD          ; send the password defined in the directory
  57.     TEXT    "\r"              ; finish up password with a Return
  58.     WHEN    2 "ress E"        ; press Enter when asked
  59.       TEXT "\r"
  60.     END
  61.  
  62. ; and the automatic logoff on hangup
  63. Cleanup MULTI
  64.     TEXT        "gyn\r"                  ; tell Opus we're leaving
  65.     WAITFOR     20 "thanks for calling"  ; wait for signoff message
  66.      END                     ; before hanging up
  67.  
  68. ; add default bindings which have not been overridden
  69. #include "rbcomm"
  70.